home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_217 / stevie / ascii.h < prev    next >
Text File  |  1992-05-06  |  688b  |  30 lines

  1. /*
  2.  * STEVIE - Simply Try this Editor for VI Enthusiasts
  3.  *
  4.  * Code Contributions By : Tim Thompson           twitch!tjt
  5.  *                         Tony Andrews           onecom!wldrdg!tony 
  6.  *                         G. R. (Fred) Walter    watmath!watcgl!grwalter 
  7.  */
  8.  
  9. /*
  10.  * Definitions of various common control characters 
  11.  */
  12.  
  13. #define    NUL            '\000'
  14. #define    BS            '\010'
  15. #define    BS_STR            "\010"
  16. #define    TAB            '\011'
  17. #define    NL            '\012'
  18. #define    NL_STR            "\012"
  19. #define    CR            '\015'
  20. #define    ESC            '\033'
  21. #define    ESC_STR            "\033"
  22.  
  23. #define    UNDO_SHIFTJ        '\333'
  24. #define    UNDO_SHIFTJ_STR        "\333"
  25.  
  26. #define    ENABLE_REDRAWING    '\334'
  27. #define    ENABLE_REDRAWING_STR    "\334"
  28.  
  29. #define    CTRL(x)    ((x) & 0x1f)
  30.